home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / wdj0796.zip / RAJA.ZIP / MYFORM.H < prev    next >
C/C++ Source or Header  |  1996-03-08  |  1KB  |  54 lines

  1. // myform.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMyFormView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. #include "zcapform.h"
  12.  
  13. class CMyFormView : public ZCaptionFormView
  14. {
  15. protected:
  16.     CMyFormView();            // protected constructor used by dynamic creation
  17.     DECLARE_DYNCREATE(CMyFormView)
  18.  
  19. // Form Data
  20. public:
  21.     //{{AFX_DATA(CMyFormView)
  22.     enum { IDD = IDD_FORMVIEW };
  23.         // NOTE: the ClassWizard will add data members here
  24.     //}}AFX_DATA
  25.  
  26. // Attributes
  27. public:
  28.  
  29. // Operations
  30. public:
  31.  
  32. // Overrides
  33. public:
  34.  
  35. protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.  
  38. // Implementation
  39. protected:
  40.     virtual ~CMyFormView();
  41. #ifdef _DEBUG
  42.     virtual void AssertValid() const;
  43.     virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45.  
  46.     // Generated message map functions
  47.     //{{AFX_MSG(CMyFormView)
  48.         // NOTE - the ClassWizard will add and remove member functions here.
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.